func github.com/andybalholm/brotli.brotli_min_size_t
56 uses
github.com/andybalholm/brotli (current package)
backward_references.go#L72: var max_distance uint = brotli_min_size_t(position, max_backward_limit)
backward_references.go#L85: sr2.len = brotli_min_size_t(sr.len-1, max_length)
backward_references.go#L92: max_distance = brotli_min_size_t(position+1, max_backward_limit)
backward_references.go#L111: max_distance = brotli_min_size_t(position, max_backward_limit)
backward_references.go#L135: var range_end uint = brotli_min_size_t(position+sr.len, store_end)
backward_references.go#L137: range_start = brotli_min_size_t(range_end, brotli_max_size_t(range_start, position+sr.len-(sr.distance<<2)))
backward_references.go#L163: var pos_jump uint = brotli_min_size_t(position+16, pos_end-kMargin)
backward_references.go#L170: var pos_jump uint = brotli_min_size_t(position+8, pos_end-kMargin)
backward_references_hq.go#L252: return brotli_min_size_t(self.idx_, 8)
backward_references_hq.go#L376: var max_distance uint = brotli_min_size_t(cur_ix, max_backward_limit)
backward_references_hq.go#L553: var max_distance uint = brotli_min_size_t(block_start+pos, max_backward_limit)
backward_references_hq.go#L646: var max_distance uint = brotli_min_size_t(pos, max_backward_limit)
backward_references_hq.go#L665: hasher.StoreRange(ringbuffer, ringbuffer_mask, pos+1, brotli_min_size_t(pos+skip, store_end))
backward_references_hq.go#L716: var max_distance uint = brotli_min_size_t(pos, max_backward_limit)
backward_references_hq.go#L758: hasher.StoreRange(ringbuffer, ringbuffer_mask, pos+1, brotli_min_size_t(pos+match_len, store_end))
block_splitter_command.go#L202: var histograms []histogramCommand = make([]histogramCommand, brotli_min_size_t(num_blocks, histogramsPerBatch))
block_splitter_command.go#L233: var num_to_combine uint = brotli_min_size_t(num_blocks-i, histogramsPerBatch)
block_splitter_command.go#L291: max_num_pairs = brotli_min_size_t(64*num_clusters, (num_clusters/2)*num_clusters)
block_splitter_distance.go#L202: var histograms []histogramDistance = make([]histogramDistance, brotli_min_size_t(num_blocks, histogramsPerBatch))
block_splitter_distance.go#L233: var num_to_combine uint = brotli_min_size_t(num_blocks-i, histogramsPerBatch)
block_splitter_distance.go#L291: max_num_pairs = brotli_min_size_t(64*num_clusters, (num_clusters/2)*num_clusters)
block_splitter_literal.go#L202: var histograms []histogramLiteral = make([]histogramLiteral, brotli_min_size_t(num_blocks, histogramsPerBatch))
block_splitter_literal.go#L233: var num_to_combine uint = brotli_min_size_t(num_blocks-i, histogramsPerBatch)
block_splitter_literal.go#L291: max_num_pairs = brotli_min_size_t(64*num_clusters, (num_clusters/2)*num_clusters)
cluster_distance.go#L278: var num_to_combine uint = brotli_min_size_t(in_size-i, max_input_histograms)
cluster_distance.go#L291: var max_num_pairs uint = brotli_min_size_t(64*num_clusters, (num_clusters/2)*num_clusters)
cluster_literal.go#L278: var num_to_combine uint = brotli_min_size_t(in_size-i, max_input_histograms)
cluster_literal.go#L291: var max_num_pairs uint = brotli_min_size_t(64*num_clusters, (num_clusters/2)*num_clusters)
compress_fragment.go#L301: var n_changed_bits uint = brotli_min_size_t(n_bits, 8-n_unchanged_bits)
compress_fragment.go#L501: var block_size uint = brotli_min_size_t(input_size, compressFragmentFastImpl_kFirstBlockSize)
compress_fragment.go#L550: var len_limit uint = brotli_min_size_t(block_size-kMinMatchLen, input_size-kInputMarginBytes)
compress_fragment.go#L724: block_size = brotli_min_size_t(input_size, compressFragmentFastImpl_kMergeBlockSize)
compress_fragment.go#L761: block_size = brotli_min_size_t(input_size, compressFragmentFastImpl_kFirstBlockSize)
compress_fragment_two_pass.go#L258: var len_limit uint = brotli_min_size_t(block_size-min_match, input_size-kInputMarginBytes)
compress_fragment_two_pass.go#L711: var block_size uint = brotli_min_size_t(input_size, kCompressFragmentTwoPassBlockSize)
encode.go#L980: var buf_size uint = brotli_min_size_t(kCompressFragmentTwoPassBlockSize, brotli_min_size_t(*available_in, block_size_limit))
encode.go#L1010: var block_size uint = brotli_min_size_t(block_size_limit, *available_in)
encode.go#L1170: var copy_input_size uint = brotli_min_size_t(remaining_block_size, *available_in)
h10.go#L76: var max_comp_len uint = brotli_min_size_t(max_length, 128)
h10.go#L113: var cur_len uint = brotli_min_size_t(best_len_left, best_len_right)
h10.go#L209: var maxlen uint = brotli_min_size_t(maxStaticDictionaryMatchLen, max_length)
h10.go#L257: var i_end uint = brotli_min_size_t(position, i_start+num_bytes)
literal_cost.go#L7: return brotli_min_size_t(1, clamp)
literal_cost.go#L13: return brotli_min_size_t(2, clamp)
literal_cost.go#L45: var in_window uint = brotli_min_size_t(window_half, uint(len))
literal_cost.go#L142: var in_window uint = brotli_min_size_t(window_half, uint(len))
metablock.go#L311: max_num_types = brotli_min_size_t(max_num_blocks, self.max_block_types_+1)
metablock_command.go#L29: var max_num_types uint = brotli_min_size_t(max_num_blocks, maxNumberOfBlockTypes+1)
metablock_distance.go#L29: var max_num_types uint = brotli_min_size_t(max_num_blocks, maxNumberOfBlockTypes+1)
metablock_literal.go#L29: var max_num_types uint = brotli_min_size_t(max_num_blocks, maxNumberOfBlockTypes+1)
platform.go#L57: func brotli_min_size_t(a uint, b uint) uint {
ringbuffer.go#L74: copy(rb.buffer_[p:], bytes[:brotli_min_size_t(n, uint(rb.tail_size_-uint32(masked_pos)))])
ringbuffer.go#L117: copy(rb.buffer_[masked_pos:], bytes[:brotli_min_size_t(n, uint(rb.total_size_-uint32(masked_pos)))])
static_dict.go#L37: return findMatchLengthWithLimit(dict.data[offset:], data, brotli_min_size_t(uint(len), maxlen))
static_dict.go#L117: maxlen = brotli_min_size_t(matchlen, l-2)
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |